home *** CD-ROM | disk | FTP | other *** search
/ 9-Digit Zip Code Directory / 9-Digit Zip Code Directory (American Business Information) (ABIZIP-12).ISO / z4src.zip / MYTEST2.H < prev    next >
C/C++ Source or Header  |  1995-09-19  |  853b  |  36 lines

  1. // mytest2.h : main header file for the MYTEST2 application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CMytestApp:
  12. // See mytest2.cpp for the implementation of this class
  13. //
  14.  
  15. class CMytestApp : public CWinApp
  16. {
  17. public:
  18.     CMytestApp();
  19.  
  20. // Overrides
  21.     virtual BOOL InitInstance();
  22.     virtual BOOL ExitInstance();
  23.  
  24. // Implementation
  25.  
  26.     //{{AFX_MSG(CMytestApp)
  27.     afx_msg void OnAppAbout();
  28.         // NOTE - the ClassWizard will add and remove member functions here.
  29.         //    DO NOT EDIT what you see in these blocks of generated code !
  30.     //}}AFX_MSG
  31.     DECLARE_MESSAGE_MAP()
  32. };
  33.  
  34.  
  35. /////////////////////////////////////////////////////////////////////////////
  36.